home *** CD-ROM | disk | FTP | other *** search
/ Mac Mania 6 / MacMania 6.toast / / Internet software / PageSpinner 2.01 / PageSpinner Extensions / More JavaScripts / More JavaScripts.rsrc / TEXT_205.txt < prev    next >
Text File  |  1997-06-07  |  262b  |  16 lines

  1. // getTime()
  2. // Returns: Text containing the time in the format HH:MM
  3.  
  4. function getTime()
  5. {       
  6.     var now = new Date();
  7.     var minutes = now.getMinutes();
  8.     var divider = ":";
  9.  
  10.     if (minutes<10)
  11.         divider = ":0";
  12.  
  13.     return( now.getHours() + divider + minutes );
  14. }
  15.  
  16.